home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / CIncludes / UserInput.h < prev    next >
C/C++ Source or Header  |  1996-05-01  |  2KB  |  79 lines

  1. /*
  2.      File:        UserInput.h
  3.  
  4.      Contains:    User Input Event Services API
  5.  
  6.      Version:    Technology:    System 8.0
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __USERINPUT__
  19. #define __USERINPUT__
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24. #ifndef __KERNEL__
  25. #include <Kernel.h>
  26. #endif
  27.  
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31.  
  32. #if PRAGMA_IMPORT_SUPPORTED
  33. #pragma import on
  34. #endif
  35.  
  36. #if PRAGMA_ALIGN_SUPPORTED
  37. #pragma options align=mac68k
  38. #endif
  39.  
  40. #if FOR_SYSTEM8_PREEMPTIVE
  41. extern OSStatus GetApplicationUserInterfaceCapable(KernelProcessID id, Boolean *hasUI);
  42.  
  43. extern OSStatus SetApplicationUserInterfaceCapable(Boolean hasUI);
  44.  
  45. extern OSStatus GetApplicationFrontClicksSetting(KernelProcessID id, Boolean *getFrontClicks);
  46.  
  47. extern OSStatus SetApplicationFrontClicksSetting(Boolean getFrontClicks);
  48.  
  49. extern OSStatus GetApplicationBackgroundOnly(KernelProcessID id, Boolean *backgroundOnly);
  50.  
  51. extern OSStatus SetApplicationBackgroundOnly(Boolean backgroundOnly);
  52.  
  53. extern OSStatus InstallIntoApplicationList(Boolean hasUI, Boolean getFrontClicks, Boolean backgroundOnly);
  54.  
  55. extern OSStatus GetFrontApplication(KernelProcessID *id);
  56.  
  57. extern OSStatus SetFrontApplication(KernelProcessID id);
  58.  
  59. extern OSStatus GetUserInputFocus(KernelProcessID *focus);
  60.  
  61. extern OSStatus SetUserInputFocus(KernelProcessID focus);
  62.  
  63. #endif
  64.  
  65. #if PRAGMA_ALIGN_SUPPORTED
  66. #pragma options align=reset
  67. #endif
  68.  
  69. #if PRAGMA_IMPORT_SUPPORTED
  70. #pragma import off
  71. #endif
  72.  
  73. #ifdef __cplusplus
  74. }
  75. #endif
  76.  
  77. #endif /* __USERINPUT__ */
  78.  
  79.